home *** CD-ROM | disk | FTP | other *** search
- /*
- *--- PGetConvertStr.cpp --------------------------------------------------
- * Copyright (c) 1995-96 Adobe Systems Incorporated. All rights reserved.
- * Created on Sun, Oct 22, 1995 @ 4:49 PM by Paul Ferguson.
- *
- * Description: For notes about this class, refer to the
- * PCL documentation file PGetConvertStr.html
- *-------------------------------------------------------------------------
- */
-
- #include "PGetConvertStr.h"
- #include "PRequestBuf.h"
-
- PGetConvertStr::PGetConvertStr(const char * sMeasurement, short cMeasureUnits)
- : PLongQuery()
- {
- PRequestBuf request(strlen(sMeasurement) + 4);
-
- request << sMeasurement << cMeasureUnits;
-
- PQuery q(pm_getconvertstr, request, itsLong);
- }
-
- // end of PGetConvertStr.cpp
-